Skip to main content

TRREST_TRANS_URLVALIDATOR

This project covers all test cases for REST trigger and URLVALIDATOR transformer.

Sr. NoService NameDescriptionDetails
1.urlValidateHappyRequired request param must be provided which are validated by validator.
2.urlValidateUnHappyRequired request param if not provided the validator throws error.
3.validateCsvBodyRequest Body with valid CSV schema is required or else will throw error.
name,id,city,country
Pranab,777,Bongaigaon,India
4.validateJsonBodyRequest Body with valid JSON schema is required or else will throw error.
{
"name": "Pranab",
"id": 777,
"city": "Bongaigaon",
"country": "India"
}
5.validateXMLBodyRequest Body with valid XML schema is required or else will throw error.
<details>
<name>Pranab</name>
<id>777</id>
<city>Bongaigaon</city>
<country>India</country>
</details>
6.validateQueryParamRequired request param must be provided which are validated by validator.